home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Hardware / Mac OS USB DDK / Mac OS USB DDK 1.4.1 / USB Software Locator Kit / SampleDriverInstallerExample / hex2c.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-25  |  260 b   |  11 lines  |  [TEXT/CWIE]

  1. #ifndef __HEX2C__
  2. #define __HEX2C__
  3. #define MAX_INTEL_HEX_RECORD_LENGTH 16
  4. typedef struct _INTEL_HEX_RECORD
  5. {
  6.    UInt32      Length;
  7.    UInt32     Address;
  8.    UInt32      Type;
  9.    UInt8      Data[MAX_INTEL_HEX_RECORD_LENGTH];
  10. } INTEL_HEX_RECORD, *PINTEL_HEX_RECORD;
  11. #endif